Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the all-dependencies group with 5 updates #368

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 30, 2024

Bumps the all-dependencies group with 5 updates:

Package From To
unocss 0.65.1 0.65.3
unbuild 3.0.1 3.2.0
@rollup/plugin-commonjs 28.0.1 28.0.2
@rollup/plugin-typescript 12.1.1 12.1.2
commander 12.1.0 13.0.0

Updates unocss from 0.65.1 to 0.65.3

Release notes

Sourced from unocss's releases.

v0.65.3

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v0.65.2

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • 30d4f80 chore: release v0.65.3
  • 20be39b chore(vscode): improve backward compatibility
  • 8158c18 refactor(vscode): rework configs system
  • a2fb0dc feat(vscode): find all references support (#4353)
  • 51df0e7 feat(inspector): improve merged selector display
  • 9ee61ef fix(inspector): improve selector merge
  • 164c125 feat(inspector): merge alias
  • ba04dec build: fix postcss build
  • 6990846 feat(core): expose cache on generator
  • 10dbd4c refactor: move generator file
  • Additional commits viewable in compare view

Updates unbuild from 3.0.1 to 3.2.0

Release notes

Sourced from unbuild's releases.

v3.2.0

compare changes

🚀 Enhancements

  • mkdist: Fail build if mkdist errors in creating declarations (#473)

🩹 Fixes

  • Correct .d.cts default export type (#458)

❤️ Contributors

v3.1.0

compare changes

🚀 Enhancements

  • Support parallel builds (af19b1b)
  • Infer externals from package name, exports, and imports fields (#469)
  • rollup: Resolve with "production" condition by default (#470, #471)

🩹 Fixes

  • Resolve presets with default export (#465)

🏡 Chore

  • Remove unused imports (#463)

❤️ Contributors

Changelog

Sourced from unbuild's changelog.

v3.2.0

compare changes

🚀 Enhancements

  • mkdist: Fail build if mkdist errors in creating declarations (#473)

🩹 Fixes

  • Correct .d.cts default export type (#458)

🏡 Chore

❤️ Contributors

v3.1.0

compare changes

🚀 Enhancements

  • Support parallel builds (af19b1b)
  • Infer externals from package name, exports and imports (#469)
  • rollup: Resolve with production condition (#470)

🩹 Fixes

  • Resolve preset on directory (#465)
  • Only externalize @types/ from devDependencies (#471)

🏡 Chore

  • Remove unused imports (#463)
  • Apply automated updates (f724382)

❤️ Contributors

Commits
  • e23d824 chore(release): v3.2.0
  • 6ac4def fix: correct .d.cts default export type (#458)
  • 1aaa0ae feat(mkdist): fail build if mkdist errors in creating declarations (#473)
  • 4536320 chore: update deps
  • 1ba5747 chore(release): v3.1.0
  • 9360293 fix: only externalize @types/ from devDependencies (#471)
  • 9dd09ee feat(rollup): resolve with production condition (#470)
  • 6846d34 feat: infer externals from package name, exports and imports (#469)
  • af19b1b feat: support parallel builds
  • bf8de6b fix: resolve preset on directory (#465)
  • Additional commits viewable in compare view

Updates @rollup/plugin-commonjs from 28.0.1 to 28.0.2

Changelog

Sourced from @​rollup/plugin-commonjs's changelog.

v28.0.2

2024-12-15

Updates

  • docs: output.exports recommendation also applies to IIFE (#1810)
Commits
  • 97e17ce chore(release): commonjs v28.0.2
  • 3efaf75 docs(commonjs): output.exports recommendation also applies to IIFE (#1810)
  • See full diff in compare view

Updates @rollup/plugin-typescript from 12.1.1 to 12.1.2

Changelog

Sourced from @​rollup/plugin-typescript's changelog.

v12.1.2

2024-12-15

Bugfixes

  • fix: path validation issue in validatePaths function (#1800)
Commits
  • 3952b73 chore(release): typescript v12.1.2
  • e58d29c fix(typescript): path validation issue in validatePaths function (#1800)
  • See full diff in compare view

Updates commander from 12.1.0 to 13.0.0

Release notes

Sourced from commander's releases.

v13.0.0

Added

  • support multiple calls to .parse() with default settings (#2299)
  • add .saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses (#2299)
  • style routines like styleTitle() to add color to help using .configureHelp() or Help subclass (#2251)
  • color related support in .configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() (#2251)
  • Help property for minWidthToWrap (#2251)
  • Help methods for displayWidth(), boxWrap(), preformatted() et al (#2251)

Changed

  • Breaking: excess command-arguments cause an error by default, see migration tips (#2223)
  • Breaking: throw during Option construction for unsupported option flags, like multiple characters after single - (#2270)
  • Breaking: throw on multiple calls to .parse() if storeOptionsAsProperties: true (#2299)
  • TypeScript: include implicit this in parameters for action handler callback (#2197)

Deleted

  • Breaking: Help.wrap() refactored into formatItem() and boxWrap() (#2251)

Migration Tips

Excess command-arguments

It is now an error for the user to specify more command-arguments than are expected. (allowExcessArguments is now false by default.)

Old code:

program.option('-p, --port <number>', 'port number');
program.action((options) => {
  console.log(program.args);
});

Now shows an error:

$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.

You can declare the expected arguments. The help will then be more accurate too. Note that declaring new arguments will change what is passed to the action handler.

program.option('-p, --port <number>', 'port number');
program.argument('[args...]', 'remote command and arguments'); // expecting zero or more arguments
program.action((args, options) => {
</tr></table> 

... (truncated)

Changelog

Sourced from commander's changelog.

[13.0.0] (2024-12-30)

Added

  • support multiple calls to .parse() with default settings (#2299)
  • add .saveStateBeforeParse() and .restoreStateBeforeParse() for use by subclasses (#2299)
  • style routines like styleTitle() to add color to help using .configureHelp() or Help subclass (#2251)
  • color related support in .configureOutput() for getOutHasColors(), getErrHasColors(), and stripColor() (#2251)
  • Help property for minWidthToWrap (#2251)
  • Help methods for displayWidth(), boxWrap(), preformatted() et al (#2251)

Changed

  • Breaking: excess command-arguments cause an error by default, see migration tips (#2223)
  • Breaking: throw during Option construction for unsupported option flags, like multiple characters after single - (#2270)
  • Breaking: throw on multiple calls to .parse() if storeOptionsAsProperties: true (#2299)
  • TypeScript: include implicit this in parameters for action handler callback (#2197)

Deleted

  • Breaking: Help.wrap() refactored into formatItem() and boxWrap() (#2251)

Migration Tips

Excess command-arguments

It is now an error for the user to specify more command-arguments than are expected. (allowExcessArguments is now false by default.)

Old code:

program.option('-p, --port <number>', 'port number');
program.action((options) => {
  console.log(program.args);
});

Now shows an error:

$ node example.js a b c
error: too many arguments. Expected 0 arguments but got 3.

You can declare the expected arguments. The help will then be more accurate too. Note that declaring new arguments will change what is passed to the action handler.

program.option('-p, --port <number>', 'port number');
program.argument('[args...]', 'remote command and arguments'); // expecting zero or more arguments
</tr></table> 

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [unocss](https://github.com/unocss/unocss) | `0.65.1` | `0.65.3` |
| [unbuild](https://github.com/unjs/unbuild) | `3.0.1` | `3.2.0` |
| [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) | `28.0.1` | `28.0.2` |
| [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) | `12.1.1` | `12.1.2` |
| [commander](https://github.com/tj/commander.js) | `12.1.0` | `13.0.0` |


Updates `unocss` from 0.65.1 to 0.65.3
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](unocss/unocss@v0.65.1...v0.65.3)

Updates `unbuild` from 3.0.1 to 3.2.0
- [Release notes](https://github.com/unjs/unbuild/releases)
- [Changelog](https://github.com/unjs/unbuild/blob/main/CHANGELOG.md)
- [Commits](unjs/unbuild@v3.0.1...v3.2.0)

Updates `@rollup/plugin-commonjs` from 28.0.1 to 28.0.2
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/commonjs-v28.0.2/packages/commonjs)

Updates `@rollup/plugin-typescript` from 12.1.1 to 12.1.2
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.2/packages/typescript)

Updates `commander` from 12.1.0 to 13.0.0
- [Release notes](https://github.com/tj/commander.js/releases)
- [Changelog](https://github.com/tj/commander.js/blob/master/CHANGELOG.md)
- [Commits](tj/commander.js@v12.1.0...v13.0.0)

---
updated-dependencies:
- dependency-name: unocss
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: unbuild
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: "@rollup/plugin-commonjs"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: commander
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 30, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 1, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 1, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-dependencies-f504250f9a branch January 1, 2025 18:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants